home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / classic.jar / skin / classic / global / linkTree.css < prev    next >
Cascading Style Sheet File  |  2006-02-28  |  811b  |  29 lines

  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /** 
  4.  * All the properties in this rule are important to avoid having to create 
  5.  * a special type of tree. This stylesheet can be loaded into a document with
  6.  * a single tree that is a link tree. Hardly elegant but it's efficient.
  7.  */  
  8. treeitem[selected="true"] > treerow
  9.   {
  10.     background            : transparent !important;
  11.     border                : none !important;
  12.     color                 : -moz-FieldText !important;
  13.   }
  14.   
  15. treecell:hover
  16.   {
  17.     text-decoration       : underline !important;
  18.     color                 : #000080 !important;
  19.     cursor                : pointer;
  20.   }
  21.   
  22. treecell:hover:active
  23.   {
  24.     text-decoration       : underline !important;
  25.     color                 : red !important;
  26.   } 
  27.   
  28.   
  29.